home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 43
/
Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso
/
Aminet
/
comm
/
tcp
/
Amster-source.lha
/
Amster_Install
/
Source
/
makefile.ppc
< prev
next >
Wrap
Makefile
|
2000-11-20
|
726b
|
31 lines
#
# Amster
# GCC makefile for MorphOS
#
SHELL = /bin/sh
CC = gcc
CFLAGS = -O -fomit-frame-pointer -mstrict-align -I./include -I. -DMORPHOS
LDFLAGS = -noixemul
OBJS = amster_Cat.oPPC main.oPPC about.oPPC gui.oPPC search.oPPC panel.oPPC transfer.oPPC download.oPPC share.oPPC upload.oPPC prefs.oPPC info.oPPC msg.oPPC chat.oPPC chatline.oPPC napster.oPPC rexx.oPPC thread.oPPC sound.oPPC lamp.oPPC url.oPPC mui.oPPC md5.oPPC navigator.oPPC hotlist.oPPC resultview.oPPC channellist.oPPC
#%.oPPC: %.c
# ./tools/pregcc <$*.c >/t/$*.cp
# $(CC) $(CFLAGS) -x c -c /t/$*.cp -o $*.oPPC
%.oPPC: %.c
$(CC) $(CFLAGS) -c $< -o $@
#
Amster.elf: $(OBJS)
$(CC) $(LDFLAGS) $(OBJS) -o Amster.elf
#
.PHONY : clean
clean:
rm -f *.oPPC